/**
 * @author Sujan Basnet
 * @email basnetsujan95@gmail.com
 * @create date 2018-04-16 12:17:46
 * @modify date 2018-04-16 12:17:46
 * @desc [description]
*/
/**
 * @author Sujan Basnet
 * @email basnetsujan95@gmail.com
 * @create date 2018-04-10 10:30:44
 * @modify date 2018-04-10 10:30:44
 * @desc [description]
*/
@import url("https://fonts.googleapis.com/css?family=Raleway");
@font-face {
  font-family: gemunu-libre-extra-bold;
  src: url("../../assets/fonts/gemunulibre/GemunuLibre-ExtraBold.ttf");
}
@font-face {
  font-family: Abeezee;
  src: url("../../assets/fonts/abeezee/ABeeZee-Regular.ttf");
}
@font-face {
  font-family: opensans-light;
  src: url("../../assets/fonts/opensans/OpenSans-Light.ttf");
}
body {
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: white;
}

a {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

body.modal-visible {
  overflow: hidden;
}

#modal-wrapper {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.75);
  overflow-y: scroll;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#modal-wrapper.visible {
  display: block;
  opacity: 1;
}

#modal {
  background-color: white;
  padding-bottom: 10px;
  width: 45%;
  max-width: 600px;
  background-clip: padding-box;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-top: 100px solid transparent;
  border-bottom: 100px solid transparent;
}
@media screen and (max-width: 1000px) {
  #modal {
    width: 55%;
  }
}
@media screen and (max-width: 800px) {
  #modal {
    width: 65%;
  }
}
@media screen and (max-width: 650px) {
  #modal {
    width: 75%;
  }
}
@media screen and (max-width: 600px) {
  #modal {
    width: 85%;
  }
}
@media screen and (max-width: 400px) {
  #modal {
    width: 95%;
  }
}

#modal > div:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}

#modal > div:nth-child(1) > div {
  flex-grow: 1;
  padding: 15px;
  color: #403E3E;
  font-size: 20px;
  font-weight: 100;
  text-align: center;
  font-family: opensans-light;
  font-weight: 200;
  background-color: red;
}

#modal > div:nth-child(1) > div:nth-child(1) {
  color: #403E3E;
}

#modal > div:nth-child(1) > form:nth-child(2) {
  color: #403E3E;
}

#login-tab.active, #signup-tab.active {
  background-color: #fff !important;
}

#login-form, #signup-form {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 10px;
}

#login-form input, #login-form > input[type=submit], #signup-form input, #signup-form > input[type=submit], .forgotPasswordForm input {
  margin: 10px 5px;
  padding: 10px;
  border-width: 0;
  border-color: #403E3E;
  border-radius: 2px;
  color: #747578;
  -webkit-box-shadow: 0 0 1px 0 #403E3E;
  box-shadow: 0 0 1px 0 #403E3E;
}

#login-form > input[type=submit], #signup-form > input[type=submit] {
  background-color: red !important;
  color: white !important;
}

#login-form {
  display: none;
}

#login-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#signup-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#signup-form label, #signup-form span {
  color: #403E3E;
}

#signup-form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#signup-form > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#signup-form > div > div:nth-child(2) > div {
  margin: 5px;
}
#signup-form > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#signup-form input[type=radio] {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#modal-close-btn {
  float: right;
  position: relative;
  bottom: -13px;
  right: 0px;
  padding: 5px 20px;
  border: none;
  background-color: red;
  color: white;
  font-family: opensans-light;
  font-weight: 800;
  border-radius: 3px;
}

.forgotPasswordForm {
  max-height: 0;
  padding: 0 14px;
  overflow: hidden;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.forgotPasswordForm.visible {
  max-height: 100px;
}
.forgotPasswordForm > .levelTwo {
  display: none;
}
.forgotPasswordForm > .levelTwo.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.forgotPasswordForm > button {
  color: red;
  background-color: white;
  border: 2px solid red;
  padding: 9px;
  margin-left: 0px;
  border-radius: 2px;
}

.moreOptions {
  display: flex;
  justify-content: space-between;
  padding: 0px 20px 10px;
}
.moreOptions > a {
  text-decoration: none;
  color: red;
  font-family: opensans-light;
  font-size: 14px;
  font-weight: bold;
}

#roadBlock {
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: auto;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
#roadBlock.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/*#roadBlock > button {
  padding: 10px 13px;
  background-color: transparent;
  color: white;
  cursor: pointer;
  border: 2px solid red;
  font-weight: bold;
  border-radius: 50%;
  outline: none;
}*/
#roadBlock > button {
  position: absolute;
  top: 10%;
  left: 90%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #4c4c4c;
  color: white;
  font-size: 20px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
}
#roadBlock > div {
  width: 30%;
  padding: 5px;
  /*background-color: white;*/
}
@media screen and (max-width: 600px) {
  #roadBlock > div {
    width: 65%;
  }
}
@media screen and (max-width: 450px) {
  #roadBlock > div {
    width: 75%;
  }
}
@media screen and (max-width: 400px) {
  #roadBlock > div {
    width: 80%;
  }
}
#roadBlock > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#roadBlock > div > div > img {
  height: 20%;
  width: 245%;
  margin-bottom: 10px;
}
#roadBlock > div > img {
  width: 100%;
  height: auto !important;
}

/*# sourceMappingURL=cssnew/modal.css.map */
